home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / Term-HOWTO < prev    next >
Text File  |  1996-03-13  |  90KB  |  2,142 lines

  1.   TERM HOWTO
  2.   Patrick Reijnen patrickr@bart.nl
  3.   v1.2, 15 July 1995
  4.  
  5.   1.  Legal Information
  6.  
  7.   1.1.  Copyright statement
  8.  
  9.   This document may be distributed freely as a whole in any form and
  10.   free of charge. Parts of this document may be distributed, provided
  11.   that this copyright message is included and the reader is informed
  12.   that this is not the full HOWTO document. Furthermore, there is to be
  13.   a pointer as to where the full document can be obtained. Specifically,
  14.   it may be included in commercial distributions, without prior consent.
  15.   However, I would like to be informed of such usage.
  16.  
  17.   This HOWTO may be translated into any language, whatsoever, provided
  18.   that you leave this copyright statement and the disclaimer intact, and
  19.   that a notice is appended stating who translated the document.
  20.  
  21.   1.2.  DISCLAIMER
  22.  
  23.   While I have tried to include the most correct and up-to-date
  24.   information available, I cannot guarantee that usage of the
  25.   information in this document does not result in loss of data. I
  26.   provide NO WARRANTY about the information in this HOWTO and I cannot
  27.   be made liable for any consequences for any damage resulting from
  28.   using information in this HOWTO.
  29.  
  30.   2.  Introduction
  31.  
  32.   2.1.  This Document
  33.  
  34.   This HOWTO attempts to clear up some of the confusion of using TERM,
  35.   Michael O'Reilly's remarkable program that allows you to multiplex
  36.   your serial line and set up a network connection.  By and large, the
  37.   documents that come with TERM are quite good, and this HOWTO is not
  38.   intended to replace them. The intention of this document is to give
  39.   some background on how TERM works and detail the steps in getting some
  40.   of the more common networking services working under TERM. It should
  41.   be emphasized that this document does not cover everything there is to
  42.   know about TERM. After reading it, the TERM manual pages should be
  43.   read, since they include information not contained here.
  44.  
  45.   2.2.  What is TERM?
  46.  
  47.   TERM is a program, written by Michael O'Reilly (michael@iinet.com.au)
  48.   and maintained by Bill Riemers (bcr@physics.purdue.edu), that is run
  49.   over a serial line to allow multiple connections to operate
  50.   concurrently - i.e. you may be down-load a file via your modem while
  51.   working on a (different) remote system via the same modem connection.
  52.   TERM can also be used to open up X client windows over a serial
  53.   connection.  Through the tredir utility and the tudpredir utility TERM
  54.   can provide almost all of the ``traditional'' TCP/IP and UDP network
  55.   services: mail, news, ftp, telnet, xarchie, etc.  In a sense, TERM is
  56.   very much like other serial protocols such as SLIP or PPP. TERM's
  57.   advantage is that it can be run entirely from user space, requiring no
  58.   support from system or network administrators.
  59.  
  60.   Unlike SLIP or PPP, your machine does not have its own IP address. All
  61.   incoming traffic must be addressed to your remote host, and it will be
  62.   redirected to your local computer by TERM.
  63.  
  64.   3.  How TERM works
  65.  
  66.   Before experimenting with TERM it is strongly advised to first read
  67.   this complete chapter and the INSTALLATION file provided with the
  68.   package. Also take a look at the manual pages linecheck, (term)test
  69.   and TERM. This will help you to work easier and faster.
  70.  
  71.   3.1.  Nomenclature
  72.  
  73.   I assume you are dialling a system through some sort of terminal
  74.   server. I use the terms local and remote to refer to the home and
  75.   network connected systems respectively (unless I use them to mean
  76.   something else :-).
  77.  
  78.   TERM provides the local machine, which has no network connection, but
  79.   is connected, via a serial line, to a remote machine which is in turn
  80.   connected to a network with network services. Let us look at how a
  81.   machine with a user invokes a program, like ftp or telnet, that
  82.   requests a network service. What these programs do is make a system
  83.   call requesting network services. The operating system then obtains
  84.   these services via its network interface (e.g. it sends and receives
  85.   packets over the ethernet). SLIP and PPP do exactly this, by
  86.   converting your modem line into a network interface, which is in
  87.   principle no different from an ethernet. The downside of this is that
  88.   these protocols make the modem-connected machine part of the network,
  89.   just like any other machine. This implies all the administrative
  90.   burdens associated with being a network node (more actually, since the
  91.   modem link must also be administered).
  92.  
  93.   In the absence of a network connection like SLIP or PPP, what does one
  94.   typically do? Well, you dial your network connected machine, read your
  95.   mail, your news etc; if you need a file, you first transfer it to the
  96.   remote machine and then download it to your local machine using kermit
  97.   or some other communication program. This is a bit of a pain,
  98.   especially since you can only really do one thing at a time that uses
  99.   your modem link.  The idea behind TERM is basically to automate and
  100.   multiplex this process. TERM is invoked on both the local and remote
  101.   machines, and the two processes communicate with one another over the
  102.   modem line. When you need a network service, you make a request to the
  103.   local TERM daemon, which forwards the request to the TERM daemon on
  104.   the remote, network-connected, machine. The result is then returned
  105.   over the modem line.
  106.  
  107.   To be more concrete, say you want to retrieve a file by ftp.  First
  108.   you need a version of ftp that can speak to TERM. You invoke this
  109.   termftp as you do a regular ftp, say termftp nethost.gov, but this
  110.   special version makes its network request to the local TERM daemon
  111.   instead of the kernel. The local TERM forwards this request, over the
  112.   modem line, to the remote TERM, which opens an ftp connection to
  113.   nethost.gov, and transmits the data back over the modem link. TERM is
  114.   smart enough to have many different things going on at once; so you
  115.   can have several different network sessions using the same modem link,
  116.   e.g. you can be logged into another distant host via termtelnet while
  117.   the termftp transfer is going on.
  118.  
  119.   If this is too abstract (or unclear) do not worry; the important piece
  120.   of information to get out of this section is that there are two copies
  121.   of TERM running, one on each end of the modem link.
  122.  
  123.   4.  Setting Things Up
  124.  
  125.   4.1.  What has to be available
  126.  
  127.   Before you start building and using TERM you have to make sure that
  128.   you have built TCP/IP support into the kernel. Furthermore, make sure
  129.   that the TCP/IP loopback interface is activated. When this is the case
  130.   you can go on with the rest of this section.
  131.  
  132.   4.2.  Explanation of concepts
  133.  
  134.   In newer TERM version two new concepts have entered TERM. These two
  135.   concepts will be explained in the next two subsections.
  136.  
  137.   4.2.1.  Sharing
  138.  
  139.   Starting with version 1.16 the concept of sharing the TERM connection
  140.   with other users has entered TERM. This means that when you enable
  141.   shared features, other people can use the same TERM connection you are
  142.   using, i.e. when you are working on your remote machine via your TERM
  143.   connection (say, from your local machine you used trsh to get in)
  144.   another person on your local machine can use the same TERM connection
  145.   at the same time to ftp a file to his login on your local machine from
  146.   an ftp site somewhere in the world.
  147.  
  148.   When you disable shared features (i.e. you execute TERM in private
  149.   mode) you and only you (we do not count root :-) can use the TERM
  150.   connection.
  151.  
  152.   Of course, you only need to install shared TERM at the end at which
  153.   you want to allow people to use the same TERM connection you are
  154.   using. So, if other people have a login on your local machine and they
  155.   want to use it from somewhere on your remote network you enable shared
  156.   features on the remote end of your TERM connection. In this way all
  157.   these people can login on your machine at the same time sharing the
  158.   same TERM connection with each other and with you. (NOTE: the first
  159.   example needed shared features to be enabled at the local end of the
  160.   TERM connection).
  161.  
  162.   NOTE for installation as root: When you install TERM as root you have
  163.   to create a 'term' group first (before compilation) with no member by
  164.   adding the following line in '/etc/group':
  165.  
  166.     term::16:root
  167.  
  168.   or any other unused GID than 16 when 16 is already in use.
  169.  
  170.   After compilation and installation make TERM and its clients SGID
  171.   'term':
  172.  
  173.     chgrp term <term_client>
  174.     chmod g+s <term_client>
  175.  
  176.   Also any other program that you make TERM-aware must be made SGID
  177.   'term'.
  178.  
  179.   4.2.2.  Full TERM networking
  180.  
  181.   Starting with TERM version 2.0.0 the statement full TERM networking is
  182.   used. When your only connection with the outside world is a TERM
  183.   connection, you have a full TERM network and you should build TERM
  184.   with full TERM networking. In this case in the shared directory a file
  185.   called termnet is placed. This tells TERM that your only connection to
  186.   the outside world is via TERM.
  187.  
  188.   When you also have some other type of network connection beside your
  189.   TERM connection TERM-aware programs first try to fulfil their job
  190.   using this network connection. When this fails TERM is invoked and it
  191.   is tried to fulfil the job via the TERM connection. To make this more
  192.   clear now an example is given in which TERM-aware telnet is used. This
  193.   telnet should work both with and without TERM.
  194.  
  195.     telnet localhost
  196.  
  197.   does not use TERM to connect, but
  198.  
  199.     telnet zeus.cs.kun.nl
  200.  
  201.   will use TERM only if you do not have some other type of network
  202.   connection.
  203.  
  204.   Full TERM networking also means to lie about the host name, and say it
  205.   is the remote host instead.  Furthermore, it causes bind(0) to always
  206.   act on the remote host.  In essence it makes many programs unusable
  207.   when they are not going through TERM, while TERM is running.
  208.   Unfortunately, most UDP programs and daemons will not work with TERM
  209.   without these nasty tricks.
  210.  
  211.   4.3.  Build TERM
  212.  
  213.   When you are lucky, this should just involve a make. Most probably
  214.   however, you need to do more. Due to new features in newer versions of
  215.   TERM it is now a bit more complicated to create your TERM binary. A
  216.   couple of ways can be followed to obtain your binary.
  217.  
  218.   To cover all these ways TERM can be built this section will be split
  219.   into three parts:
  220.  
  221.   1. Build TERM, versions 2.0.0 and higher
  222.  
  223.   2. Build TERM, versions 1.16 up to 1.19
  224.  
  225.   3. Build TERM up to version 1.15
  226.  
  227.   4.3.1.  Build TERM, versions 2.0.0 and higher
  228.  
  229.   First, make sure you have read the section about 'full TERM
  230.   networking' above.
  231.  
  232.   For TERM versions 2.0.0 and higher there are many ways to build the
  233.   TERM binary and the clients. All of these can be done both by root and
  234.   by ordinary user:
  235.  
  236.   1. Build TERM in private mode without full TERM networking
  237.  
  238.   2. Build TERM in private mode with full TERM networking
  239.  
  240.   3. Build TERM in shared mode without full TERM networking
  241.  
  242.   4. Build TERM in shared mode with full TERM networking
  243.  
  244.   In these versions of TERM a new way for compilation has entered TERM
  245.   using the script configure. When configure is run it checks on what
  246.   operating system you are trying to install TERM, whether the source
  247.   directory is available or not, and if any runtime options are set.
  248.   According to the things found configure then creates a Makefile using
  249.   Makefile.in which is provided in the TERM package.
  250.  
  251.   Two of the more important options to configure are --root and --user
  252.   which state whether TERM will be installed by root or an ordinary
  253.   user. Other options can be used to install TERM the way you want (non-
  254.   standard paths for example).
  255.  
  256.   1. Build TERM in private mode without full TERM networking.
  257.  
  258.      To build TERM in this way you need to execute the following
  259.      commands (both for root and ordinary user):
  260.  
  261.        ./configure --root  OR --user
  262.        make install installman
  263.  
  264.   This builds the binaries and installs these binaries and the manual
  265.   pages.
  266.  
  267.   2. Build TERM in private mode with full TERM networking.
  268.  
  269.      To build TERM in this way you need to execute the following
  270.      commands (both for root and ordinary user):
  271.  
  272.        ./configure --root  OR --user
  273.        make installnet installman
  274.  
  275.   This builds the binaries and installs these binaries and the manual
  276.   pages.
  277.  
  278.   3. Build TERM in shared mode without full TERM networking.
  279.  
  280.      To build TERM in this way you need to execute the following
  281.      commands (both for root and ordinary user):
  282.  
  283.        ./configure --root  OR --user
  284.        make share installman
  285.  
  286.   This builds the binaries and installs these binaries and the manual
  287.   pages.
  288.  
  289.   4. Build TERM in shared mode with full TERM networking.
  290.  
  291.      To build TERM in this way you need to execute the following
  292.      commands (both for root and ordinary user):
  293.  
  294.        ./configure --root  OR --user
  295.        make share installnet installman
  296.  
  297.   This builds the binaries and installs these binaries and the manual
  298.   pages.
  299.  
  300.   4.3.2.  Build TERM, versions 1.16 up to 1.19
  301.  
  302.   To build these versions of TERM you can now choose one of the
  303.   following ways:
  304.  
  305.   1. As an ordinary user, build TERM in private mode
  306.  
  307.   2. As an ordinary user, build TERM in shared mode
  308.  
  309.   3. As root, build TERM in private mode
  310.  
  311.   4. As root, build TERM in shared mode
  312.  
  313.   Below, it will be explained how to enable/disable shared features
  314.   during the compilation of TERM.
  315.  
  316.   1. You are an ordinary user (no root access) and you do NOT want to
  317.      SHARE the TERM connection with other users.
  318.  
  319.      As a user who does not want to share the TERM connection with other
  320.      users you should do the following to build TERM:
  321.  
  322.        make DO=install OS-type
  323.        make installman
  324.  
  325.   After this TERM, its clients and the manual pages are built and
  326.   installed.
  327.  
  328.   Furthermore, you need to create a directory '$HOME/.term'. This is the
  329.   directory in which TERM will look for its 'termrc' file.
  330.  
  331.   2. You are an ordinary user (no root access) and you want to SHARE the
  332.      TERM connection with other users.
  333.      As a user who wants to share the TERM connection you should do the
  334.      following:
  335.  
  336.        make DO=installshare USERSHARE=$HOME/term OS-type
  337.        make installman
  338.  
  339.   After this TERM, its clients and the manual pages are built and
  340.   installed.
  341.  
  342.   Furthermore, you will have a directory '$HOME/term' (default) with
  343.   permissions 'drwxrwxr-x'. In this directory you will find at least the
  344.   socket used by TERM for its connection ('tmp/private/socket=').
  345.  
  346.   3. You are root and you do NOT want to SHARE the TERM connection with
  347.      other users.
  348.  
  349.      As root who does not want the TERM connection to be shareable you
  350.      should do the following to build TERM:
  351.  
  352.        make DO=install OS-type
  353.        make installman
  354.  
  355.   After this TERM, its clients and the manual pages are built and
  356.   installed.
  357.  
  358.   Furthermore, you now have a directory called '/usr/local/lib/term'
  359.   (default) with permissions 'drwxr-xr-x'. In this directory you will at
  360.   least find the socket used by TERM for its connection
  361.   ('tmp/private/socket=').
  362.  
  363.   4. You are root and want to SHARE the TERM connection.
  364.  
  365.      First, make sure you have read the section about 'sharing' above.
  366.  
  367.      As root who wants to share the TERM connection you should do the
  368.      following:
  369.  
  370.        make DO=installshare OS-type
  371.        make installman
  372.  
  373.   After this TERM, its clients and the manual pages are built and
  374.   installed.
  375.  
  376.   Furthermore, you now have a directory called '/usr/local/lib/term'
  377.   (default) owned by group TERM and with permissions 'drwxrwxr-x'. In
  378.   this directory you will at least find the socket used by TERM for its
  379.   connection ('tmp/private/socket=').
  380.  
  381.   4.3.3.  Build TERM up to version 1.15
  382.  
  383.   For these versions of TERM building should invoke no more than the
  384.   commands
  385.  
  386.     make DO=install OS-type
  387.     make installman
  388.  
  389.   You will find TERM, its clients and the manual pages nicely built and
  390.   installed and ready for use after this.
  391.  
  392.   Furthermore, you need to create a directory '$HOME/term'. This
  393.   directory TERM will use to look for its termrc file.
  394.  
  395.   The only thing you may want to do is change some of the paths in the
  396.   Makefile or change some of the compiler flags.
  397.  
  398.   4.4.  client.a, libtermnet.a, libtermnet.sa, libtermnet.so
  399.  
  400.   With TERM a library with functions for TERM clients is provided.
  401.  
  402.   Up to version 1.16 this library was called client.a. During
  403.   compilation of TERM this library was built and then used during the
  404.   compilation of the TERM clients. It was not installed in another
  405.   directory.
  406.  
  407.   Starting with version 1.16 the name of the library is changed to
  408.   libtermnet.a. Up to version 1.19 this library is created in the TERM
  409.   directory and then used during compilation of the TERM clients. It is
  410.   not installed in another directory.
  411.  
  412.   Starting with version 2.0.0, beside libtermnet.a also libtermnet.so
  413.   and libtermnet.sa (shared library and exported initialized library
  414.   data) are created during compilation of the TERM package. During the
  415.   installation of all the parts of the package also these three library
  416.   files are installed in the directory '/usr/local/lib' (default). Then
  417.   a link is made from libtermnet.so.2 to libtermnet.so.2.x.x. Finally,
  418.   ldconfig is run to create the necessary links and cache (for use by
  419.   the run-time linker, ld.so) to the most recent shared libraries found
  420.   in the directories specified on the command line, in the file
  421.   '/etc/ld.so.conf', and in the trusted directories ('/usr/lib' and
  422.   '/lib'). If the installation is done correctly the three library files
  423.   can now be used by TERM clients which are built with dynamic instead
  424.   of static libraries. Also, these libraries can now be used to port
  425.   your own software to make it TERM aware (see belo!  w).
  426.  
  427.   4.5.  Setting environment variables
  428.  
  429.   TERM knows a couple of environment variables which can be set by
  430.   users. The first three of those that I will explain are
  431.  
  432.   ╖  TERMDIR
  433.  
  434.   ╖  TERMSHARE
  435.  
  436.   ╖  TERMMODE
  437.  
  438.   By setting these variables you can control the way TERM is run.
  439.  
  440.   For TERM versions up to 1.15 only the variable TERMDIR is important
  441.   (these versions do not know the shared mode). For these versions
  442.   TERMDIR should be set as follows:
  443.  
  444.     setenv TERMDIR $HOME     (csh or tcsh)
  445.     export TERMDIR=$HOME     (bash)
  446.  
  447.   Starting with version 1.16 TERM also knows the variables TERMSHARE and
  448.   TERMMODE. With these variables TERM can be told to run in private mode
  449.   or in shared mode. I will explain how to set the variables for private
  450.   mode and shared mode.
  451.  
  452.   TERMMODE knows the following three values;
  453.  
  454.   ╖  0 = private
  455.  
  456.   ╖  1 = system shared
  457.  
  458.   ╖  2 = user shared
  459.  
  460.   1. Running TERM in private mode can be done setting the variables
  461.      TERMDIR and TERMMODE in the following way:
  462.  
  463.      For csh or tcsh
  464.  
  465.        setenv TERMDIR $HOME
  466.        setenv TERMMODE 0
  467.  
  468.   For bash
  469.  
  470.     export TERMDIR=$HOME
  471.     export TERMMODE=0
  472.  
  473.   2. When you want to use TERM in shared mode there are two ways of
  474.      setting the variables:
  475.  
  476.      a. When TERM is installed as a SUID program only TERMMODE has to be
  477.         set.
  478.  
  479.           setenv TERMMODE 2    (csh or tcsh)
  480.           export TERMMODE=2    (bash)
  481.  
  482.      b. When TERM is installed as a SGID program the variables have to
  483.         be set in the following way:
  484.  
  485.         For csh or tcsh
  486.  
  487.           setenv TERMMODE 1
  488.           setenv TERMDIR /usr/local/lib/term
  489.           setenv TERMSHARE $TERMDIR
  490.  
  491.      For bash
  492.  
  493.        export TERMMODE=1
  494.        export TERMDIR=/usr/local/lib/term
  495.        export TERMSHARE=$TERMDIR
  496.  
  497.      Setting the variables in this way makes it possible to start old
  498.      clients (clients linked to an older version of client.a) in shared
  499.      mode.
  500.  
  501.   Starting with version 2.0.0 TERM also knows the variable TERMSERVER.
  502.   You need to set this variable when you have multiple modems and you
  503.   have more than one connection at a time. To specify which connection
  504.   to use, you must start TERM with a server name:
  505.  
  506.     nohup term -v /dev/modem1 Connection1 &
  507.     nohup term -v /dev/modem2 Connection2 &
  508.  
  509.   Users should then set the variable TERMSERVER to the connection name
  510.   they want to use:
  511.  
  512.     setenv TERMSERVER Connection1   (csh or tcsh)
  513.     export TERMSERVER=Connection2   (bash)
  514.  
  515.   4.6.  Test TERM
  516.  
  517.   Do a make test (or make termtest for newer versions of TERM) to build
  518.   TERM's test daemon. (term)test works by running two copies of TERM on
  519.   your system, a should now be able to do a trsh and a tupload (try
  520.  
  521.     tupload ./term /usr/tmp
  522.  
  523.   - you should get a copy of the TERM binary in '/usr/tmp'). The local
  524.   TERM's output should show up in 'local.log', the remote's one in
  525.   'remote.log'. You can start TERM up with a -d255 flag to enable
  526.   debugging output to be written to these files, or enable debugging in
  527.   your 'termrc' file.
  528.  
  529.   NOTE: Run test as ./test  so as to avoid your system's test.
  530.  
  531.   4.7.  TERM and communication programs
  532.  
  533.   Before you can use TERM you must have established a connection via the
  534.   modem using a communication program like kermit or seyon. In the
  535.   documentation of your communication program you can find what you need
  536.   to do to establish the conection with the remote machine.
  537.  
  538.   when you have established the connection with the remote machine and
  539.   you want to run TERM you need to suspend or quit your communication
  540.   program without closing the connection with the remote machine. This
  541.   needs to be done as otherwise the communication program will steal
  542.   characters from linecheck or TERM.
  543.  
  544.   Below for some communication programs I will explain how you can make
  545.   sure that the connection will stay alive and the communication
  546.   programs will not steal characters from linechech or TERM.
  547.  
  548.   4.7.1.  Kermit
  549.  
  550.   Starting TERM when you use kermit is easy. At the local kermit prompt
  551.   you type suspend. Now you see back your Linux prompt. From this prompt
  552.   you can establish your TERM conection.
  553.  
  554.   4.7.2.  Seyon
  555.  
  556.   An easy way to start linecheck or TERM when you are using seyon is to
  557.   put linecheck and TERM in the Transfer Menu (controlled by the file
  558.   '$HOME/.seyon/protocols').
  559.  
  560.   In the file '$HOME/.seyon/protocols' add:
  561.  
  562.     "Line check" "$cd /tmp; linecheck"
  563.     "Term" "$term -c off -w 10 -t 150 -s 38400 -l $HOME/tlog"
  564.  
  565.   Then, when you want to execute linecheck or TERM on the local machine,
  566.   you can select the Transfer Menu, either the "Line check" or the
  567.   "Term" item, and Go.
  568.  
  569.   Of course, you can also use the shell command button, and type
  570.   'linecheck' or 'term' in the pop-up dialog box. This also does
  571.   automatic redirection of input and output.
  572.  
  573.   4.8.  Make a Transparent Link
  574.  
  575.   Presumably, you can establish a modem connection between your local
  576.   and remote hosts. Typically, you are dialling into some kind of
  577.   terminal server and connecting to your remote host from there. You are
  578.   also using some kind of terminal software, such as kermit or seyon to
  579.   talk to your modem (the examples in this document will use kermit,
  580.   since that is what its author uses). If you are having trouble with
  581.   your modem, or your terminal software, take a look at the Serial-
  582.   HOWTO; that should help you out.
  583.  
  584.   Having established your link, you want to make it as transparent as
  585.   possible.  Check the commands on the terminal server (help or ? will
  586.   usually get you started). Go for the 8 bit options whenever possible.
  587.   This may mean changing the way you log in to a system, e.g. if the
  588.   server uses rlogin, you may have to use it and give it the -8 flag to
  589.   make it transparent.  Especially watch out for xon/xoff flow control.
  590.   You do not want that. Try to enable rts/cts (hardware) flow control.
  591.   You may need to check your modem documentation to learn how to
  592.   configure it to do 8-bit rts/cts communications.
  593.  
  594.   4.9.  Run linecheck
  595.  
  596.   WARNING: In some of the documents the command line options for
  597.   linecheck are mentioned in an incorrect order. I have checked this and
  598.   found the order of options mentioned below to be the correct ones.
  599.  
  600.   NOTE: Starting with TERM version 2.3.0 linecheck no longer needs to
  601.   have the name of a log-file on its command line. It will write its
  602.   output to the file 'linecheck.log' in the directory you start
  603.   linecheck in.
  604.   Linecheck is a program that is supplied with TERM.  It checks the
  605.   transparency of a link, providing configuration information that TERM
  606.   needs to run correctly.  linecheck will send each of the 256 possible
  607.   eight bit characters over the link and verify that each was
  608.   transmitted successfully. TERM needs to be configured to deal with
  609.   characters that cannot be transmitted over the link, and linecheck
  610.   determines what characters these are. You use linecheck after you have
  611.   established as transparent a modem link as possible. To run linecheck,
  612.   do the following
  613.  
  614.   1. On the remote system run
  615.  
  616.        linecheck linecheck.log
  617.  
  618.   2. Escape back to your local system and suspend your communication
  619.      program (see above)
  620.  
  621.   3. On the local system run
  622.  
  623.        linecheck linecheck.log > /dev/modem < /dev/modem
  624.  
  625.   When linecheck is done, you will find a set of numbers at the bottom
  626.   of the 'linecheck.log' files. These should be escaped in the termrc at
  627.   the other end of the link. For example, in my system my local
  628.   'linecheck.log' said nothing and my remote 'linecheck.log' said to
  629.   escape 29 and 157.  Therefore, my local I have to also ignore it at
  630.   the other; so, in this example, I shall have to ignore 29 and 157 in
  631.   my remote system.
  632.  
  633.   If linecheck hangs, try using
  634.  
  635.     linecheck linecheck.log 17 19
  636.  
  637.   on the remote system and
  638.  
  639.     linecheck linecheck.log 17 19 > /dev/modem < /dev/modem
  640.  
  641.   on the local system. This will escape your xon/xoff (flow control)
  642.   characters, which will hang your line if you have got software flow
  643.   control. If this solves the hanging problems, you will want to escape
  644.   /ignore 17/19 in both 'termrc's'. If your terminal server has other
  645.   characters that will shut it down, try running linecheck with those
  646.   characters escaped, as above. You can spot these characters if
  647.   linecheck hangs. If this is the case, kill it, then look in the log-
  648.   files. The last characters transmitted are likely to be the culprits.
  649.   Try it again with these characters escaped.
  650.  
  651.   In summary, my local termrc has the lines
  652.  
  653.     escape 29
  654.     escape 157
  655.  
  656.   and my remote termrc has the lines
  657.  
  658.     ignore 29
  659.     ignore 157
  660.  
  661.   since my remote 'linecheck.log' said to escape 29 and 157.
  662.  
  663.   4.10.  Try Running TERM
  664.  
  665.   Log into the remote system, making the link as transparent as possible
  666.   (if you have not already done so).  Fire up TERM at the remote end.  I
  667.   use the following:
  668.  
  669.     exec term -r -l $HOME/tlog -s 38400 -c off -w 10 -t 150.
  670.  
  671.   Let us run down each option one by one (note that I could just as
  672.   easily have put these options in my termrc. I did it this way because
  673.   it saves editing a file while getting TERM set up).
  674.  
  675.   exec means to destroy your current shell, running the given program in
  676.   its place. I exec things because I do not intend to use my login shell
  677.   again; so it is just wasting memory. If you are debugging the link and
  678.   can reliably kill the remote TERM, you might not want to do an exec.
  679.  
  680.   The -r option is needed at exactly one end. TERM will then see this
  681.   end as the remote end of the connection (Note that TERM's remote end
  682.   can thus be your local machine). If you do not use this option at one
  683.   end TERM clients will spontaneously crash.
  684.  
  685.   -l $HOME/tlog. This logs errors to the file tlog in my home directory.
  686.   Very useful for debugging. No reason not to do this.
  687.  
  688.   -s 38400 : I have got a 14400 baud modem, with compression.  For
  689.   optimal compression ratios, I want to be able to push bits down the
  690.   pipe as fast as possible. For a slower modem, you should use something
  691.   lower. Note that if you have a slower machine with 16450 uart on your
  692.   serial port, high baud rates can cause data loss by overloading the
  693.   chip on your serial port. TERM will recover from this, but if you see
  694.   a lot of error messages in your log file, (or get overrun warnings
  695.   from linux kernel versions 0.99pl15 and up) you again might want to
  696.   lower this number.
  697.  
  698.   -c off : This turns data compression off. I have got a compressing
  699.   modem, and I do not want to compress things twice.
  700.  
  701.   -w 10 -t 150 : Again, these are options to optimize my fast modem
  702.   link. I have set my window to 10 and my timeout to 150. This is
  703.   according to the recommendation in the term_setup man page.
  704.  
  705.   Escape back to your local machine and suspend your communication
  706.   program (see above). You do not want it running while TERM is running,
  707.   because it will fight with TERM over the serial port. If you can
  708.   convince your modem to not hang up when you exit your communication
  709.   program (when it toggles DTR), you could just exit the program at this
  710.   point.
  711.  
  712.   Now run TERM locally. I use:
  713.  
  714.     term -c off -l $HOME/tlog -s 38400 -w 10 -t 150 < /dev/modem > /dev/modem &
  715.  
  716.   I need to tell TERM where the modem is; so I point both standard input
  717.   and output at '/dev/modem' (that is what the < and > do). I also run
  718.   it in the background; so I can use this screen for something else if I
  719.   want to.
  720.  
  721.   TERM should work now :-). Try a trsh, and see what happens. If you
  722.   hang, or your link seems slow, take a look at your 'tlog' at each end.
  723.   Are you getting timeouts or error messages? If so, then you have
  724.   configured something incorrectly. Try again (after you have finished
  725.   reading this :-). Note that the connection will not seem blazingly
  726.   fast, especially if you are using compression - it will be a little
  727.   jumpy. The real speed comes in during file transfer and the like.
  728.  
  729.   4.11.  Terminate your TERM connection
  730.  
  731.   Most certainly, after you have done a lot of work using TERM, you want
  732.   to finish your work and bring your TERM connection down. For this to
  733.   be realized there are four ways:
  734.  
  735.   1. Kill the TERM programs at both sides of the connection. This is the
  736.      least recommended way of terminating your connection.
  737.  
  738.   2. A better way is to execute the following command locally:
  739.  
  740.        echo '00000' > /dev/modem
  741.  
  742.   This will nicely terminate your TERM connection. It will work for all
  743.   version of TERM. Make sure that the sequence of zeros contains at
  744.   least five zeros.
  745.  
  746.   3. In the termrc of TERM versions 2.0.0 and higher you can now enter a
  747.      statement called terminate '<some string>'. This sets a string that
  748.      will cause TERM to exit ('00000' by default). It must be at least
  749.      five characters long, to avoid accidently terminations.
  750.  
  751.   4. Starting with version 1.14 there is the program tshutdown (actually
  752.      for version 1.14 it is available as a patch, for newer versions it
  753.      is in the package). Executing tshutdown nicely terminates your TERM
  754.      connection.
  755.  
  756.   4.12.  Removing TERM from your partition
  757.  
  758.   Ok, you asked for this. As some of you want to get rid of TERM I here
  759.   present you the steps to be done in removing TERM. In the process of
  760.   removing TERM you have to fulfil the following steps:
  761.  
  762.   ╖  Removing directories with their contents. Depending on how you
  763.      installed TERM, one or more of the following directorieswill exist
  764.      on your machine:
  765.  
  766.        $HOME/.term/termrc
  767.        $HOME/.term/termrc.<server>
  768.        $HOME/term/termrc
  769.        $HOME/term/termrc.<server>
  770.        /usr/local/lib/term/termrc
  771.        /usr/local/lib/term/termrc.<server>
  772.        /etc/termrc
  773.        /etc/termrc.<server>
  774.  
  775.   These directories can be removed together with their contents. Use
  776.   '/bin/rm -rf' to get this done.
  777.  
  778.   ╖  The group 'term'. For some of the ways of installation you had to
  779.      create a group 'term'. Check the file '/etc/group' for the 'term'
  780.      entry. When it exists you can remove the entry.
  781.  
  782.   ╖  The TERM-package and TERM-aware executables. This is probably the
  783.      hardest part in removing TERM. For the executables coming with the
  784.      TERM-package you have to look in the directory '/usr/local/bin' or
  785.      the directory '$HOME/bin'.
  786.  
  787.      With executables you made TERM-aware yourself I cannot help you.
  788.      You need to know what executables you made TERM-aware in order to
  789.      know what executables you have to remove. Do not forget
  790.      configuration, default and other files coming with some of these
  791.      executables.
  792.  
  793.   ╖  Library files. To remove these you best can execute the following
  794.      commands:
  795.  
  796.        cd /
  797.        find . -name libtermnet* -exec /bin/rm {}
  798.  
  799.   This will find and remove the library files.
  800.  
  801.   ╖  Include file. Also for this one the easiest way is to execute the
  802.      following two commands:
  803.  
  804.        cd /
  805.        find . -name termnet.h -exec /bin/rm {}
  806.  
  807.   This will remove the include file.
  808.  
  809.   ╖  Manual pages. When you have installed the TERM manual pages you can
  810.      now find them back in one of the following directories:
  811.  
  812.        /usr/local/man/man1
  813.        /usr/local/man/cat1
  814.        $HOME/man/man1
  815.        $HOME/man/cat1
  816.  
  817.   At least you have to check for the following manual pages: term,
  818.   term_clients, term_setup, tdownload, linecheck, trdate, trdated,
  819.   termrc, termtest, tmon, tredir, trsh, tshutdown, tudpredir, tupload,
  820.   txconnand finally tiptest.
  821.   ╖  Temporary user directory. This is de directory '/usr/tmp/private'
  822.      and its contents.
  823.  
  824.   After this exercise you can be quite sure that you have removed
  825.   everything related to TERM.
  826.  
  827.   4.13.  Optimizing your connection
  828.  
  829.   Once you have got TERM running, you might want to try to get things
  830.   optimized. A good way to measure the speed of your link is to run tmon
  831.   in one window while up/downloading a file in another. Try both (big)
  832.   text files and compressed files; the plain text should go a factor of
  833.   two-ish faster than the compressed files.  The parameters you want to
  834.   fiddle with are baud rate (-s), compression (-c), windows (-w),
  835.   timeout (-t) and retrain (-A).
  836.  
  837.   Watch out with the retrain parameter. With TERM version 1.19 I got a
  838.   performance decrease of 80% to 90% compared to running TERM without
  839.   the retrain parameter. It is not clear if this is a bug in TERM
  840.   version 1.19 and if this problem exists only with TERM version 1.19.
  841.  
  842.   Baudrate: the maximum number of bits per second TERM will try to send
  843.   over the serial link. TERM will avoid sending characters at a higher
  844.   data rate than this. The default is to use the speed of your
  845.   computer's serial port, but be warned that this may be too high if
  846.   your modem runs at a lower rate over the phone line. The baud rate
  847.   option is intended for systems that buffer output to the modem. During
  848.   setup and tuning it is better to use a small baud rate rather than one
  849.   which is too large. For high speed links (> 38400), making it
  850.   unlimited is probably advantageous. This is achieved by using the
  851.   value 'off'. TERM will then rely solely on your kernel to do flow
  852.   control.
  853.  
  854.   Compression: you want this on if you do not have a compressing modem.
  855.   If you do have such a modem, turn compression off, otherwise you will
  856.   be compressing things twice, which typically increases the amount of
  857.   data transmitted. Compressing modems are those that use the MNP-5 or
  858.   V42.bis protocols. Check your modem documentation and the message when
  859.   your modem connects.
  860.  
  861.   Windows: this is the number of chunks of data, or packets, that TERM
  862.   will let go over the line before it gets an acknowledgment (or ack)
  863.   from the remote TERM. For fast modems, increasing this can be a win;
  864.   for slower links this can overwhelm the remote end.
  865.  
  866.   Timeout: the time TERM will wait for an ack. If you have increased
  867.   windows, and you are getting timeouts in your log-file, try increasing
  868.   this.
  869.  
  870.   For 14400/V42.bis, I use -c off -w 10 -t 150. I get around 1700 cps on
  871.   compressed files and 3500 cps on ASCII files using tupload.
  872.  
  873.   4.14.  Troubleshooting
  874.  
  875.   In this section some thoughts are given about what to check when you
  876.   have problems executing TERM or one of its clients.
  877.  
  878.   ╖  Did you clean up the TERM directory structure? With newer versions
  879.      of TERM the structure of the directory tree under
  880.      '/usr/local/lib/term' has changed a couple of times. If you are not
  881.      aware of this, it can cause all kinds of error messages. The best
  882.      thing to do is to delete the directory tree under
  883.      '/usr/local/lib/term' (save your 'termrc') and then install your
  884.      new TERM version. This way, you avoid the struggle with a messed up
  885.      directory tree.
  886.  
  887.   ╖  Did you remove old sockets? When you update your TERM version
  888.      remove all the sockets (called 'socket=') created by TERM. No doing
  889.      this can cause strange problems. To find out what socket TERM is
  890.      listening to you can use the "netstat" program.
  891.  
  892.   ╖  TERM does not compile correct on sunOS 4.1.3? You have configured
  893.      TERM with './configure --user'. During compilation you are getting
  894.      a assembler error on a unknown '-k' flag. The reason of this error
  895.      is unknown. The solution to this error is to configure TERM with
  896.      static libraries. So, you have to do './configure --user --static'
  897.      and then continue with the compilation process the way you normally
  898.      do. Now TERM should compile correct.
  899.  
  900.   ╖  termtest is presenting you the error: 'Term: failed to connect to
  901.      term socket '/root/.term/sockettest''? When termtest runs it
  902.      expects the executable 'term' to be in the same directory as
  903.      termtest. When you do a 'make install' prior to running termtest,
  904.      the TERM binary is moved to '/usr/local/bin' (or some other bin
  905.      directory).
  906.  
  907.      The workaround for this is to link the binary to the source
  908.      directory:
  909.  
  910.        ln -s /usr/local/bin/term /usr/src/term-<version_number>/term
  911.  
  912.   ╖  Are you running the right binary? TERM has been updated quite a
  913.      lot, and many systems have different versions of the programs
  914.      floating around. Make sure you are using the right version. Note
  915.      that this applies to linecheck too. You can use bash's type -a or
  916.      the whereis command to find which program is being run.  TERM
  917.      versions after 1.11 should print out their version number when they
  918.      start up.  (Although version 1.14 claims to be 1.12.  Sigh.)
  919.  
  920.   ╖  Do you have the right 'termrc' in the right place? Depending on the
  921.      version of TERM you are running and the way you installed TERM
  922.      (being root or user) this file has to be in one of the following
  923.      directories:
  924.  
  925.        $HOME/.term/termrc
  926.        $HOME/.term/termrc.<server>
  927.        $HOME/term/termrc
  928.        $HOME/term/termrc.<server>
  929.        /usr/local/lib/term/termrc
  930.        /usr/local/lib/term/termrc.<server>
  931.        /etc/termrc
  932.        /etc/termrc.<server>
  933.  
  934.   Some systems have pre-installed 'termrc' files; make sure they are
  935.   gone before you set things up. If you are running things as root,
  936.   lookout for '/.term'. TERM creates files (sockets actually) while it
  937.   is running; so it has its own directory, (note, there is no leading
  938.   dot in 'termrc'!).
  939.  
  940.   ╖  Does TERM find its 'termrc' file? when you start up TERM at both
  941.      sides, you should see messages like the one below:
  942.        Term version: 2.2.9
  943.        Reading file:  /usr/local/lib/term/termrc
  944.        Using shared mode.
  945.  
  946.   When the second line is missing TERM cannot find its 'termrc' file and
  947.   you know that something is gone wrong during the installation (unless
  948.   you are not using a 'termrc' file and enter all the options to the
  949.   command line :-). Check the place and the permissions of the 'termrc'
  950.   file on the site TERM cannot find its 'termrc' file.
  951.  
  952.   ╖  Do the entries in the 'termrc' file have the correct syntax and
  953.      spelling? A known problem is that people who need to escape and
  954.      ignore several characters enter them like this in the 'termrc'
  955.      file:
  956.  
  957.        escape 1,4,30,255
  958.        ignore 1,4,30,255
  959.  
  960.   Although TERM does NOT like this it will not complain. It only escapes
  961.   or ignores the first character presented to the escape or ignore
  962.   statement. The others characters are silently handled as not being
  963.   there.
  964.  
  965.   When you have to escape or ignore several characters you have to put
  966.   them on separate lines in your 'termrc' file, each line starting with
  967.   the keyword escape or ignore. Only when you have to escape or ignore a
  968.   range of characters you can do it the following way:
  969.  
  970.     escape 16-19      # escape characters 16, 17, 18, 19
  971.     escape 23         # 23
  972.     escpae 255        # and 255
  973.     ignore 16-19      # ignore characters 16, 17, 18, 19
  974.     ignore 23         # 23
  975.     ignore 255        # and 255
  976.  
  977.   ╖  Is you 'term' or '.term' directory mounted with NFS? If your 'term'
  978.      or '.term' directory is mounted with NFS you need to set the flag
  979.      -DTERM_NFS_DIR in the CFLAGS line of the Makefile. Alas, for the
  980.      author this flag causes a compile error when TERM 1.19 is compiled
  981.      on a machine running sunOS 4.*.
  982.  
  983.   ╖  Are all files and directories owned by the correct user and group
  984.      and do they have the correct permissions? This should be no
  985.      problems as these permissions are set during the installation
  986.      phase. However, when you port your own programs to TERM you must be
  987.      aware of this. Also when you change the mode TERM is working in
  988.      (i.e. from private mode to shared mode) file and directory
  989.      ownerships and permissions have to be adapted.
  990.  
  991.   ╖  You are getting the error gethostbyname: <hostname>: Non-
  992.      authoritative `host not found', or, server failed
  993.  
  994.      To solve this you have to check the following things:
  995.  
  996.      1. Is the file '/etc/hosts' configured correctly? <hostname> is not
  997.         the name of your host (old SLS releases and some old and new
  998.         Slackware releases are shipped with hostname 'darkstar' for
  999.         example). Change this in this file. It must at least contain a
  1000.         line like below (the format is described above it):
  1001.  
  1002.           # Local Hosts Format:
  1003.           #  IP_NUMBER            HOSTNAME        ALIASES
  1004.           #
  1005.           # Here is the name of your host, first, followed by any aliases
  1006.           127.0.0.1       localhost       linuxpc.domain  linuxpc
  1007.  
  1008.      When your only connection to the outside world is by TERM the line
  1009.      above is the only one that may appear in the file '/etc/hosts'. Do
  1010.      not put actual addresses of frequently visited destinations in
  1011.      '/etc/hosts'. TERM does not like these to be in '/etc/hosts' and it
  1012.      will hang on them.
  1013.  
  1014.      2. Are your '/etc/rc*' and '/etc/resolv.conf' files world readable
  1015.         (chmod ugo+r)?
  1016.  
  1017.      3. Last, make sure that you have installed the TCP/IP loopback-
  1018.         interface on your machine. You can check for loopback by running
  1019.         the command 'ifconfig'. When you have installed the loopback-
  1020.         interface you will at least get something like:
  1021.  
  1022.           lo        Link encap:Local Loopback
  1023.                     inet addr:127.0.0.1  Bcast:127.255.255.255  Mask:255.255.255.0
  1024.                     UP BROADCAST LOOPBACK RUNNING  MTU:2000  Metric:1
  1025.                     RX packets:0 errors:0 dropped:0 overruns:0
  1026.                     TX packets:4984 errors:0 dropped:0 overruns:0
  1027.  
  1028.      on your screen. During boot time you can furthemore check which
  1029.      protocols are in use. On my machine a line like the one below then
  1030.      appears:
  1031.  
  1032.        IP Protocols: ICMP, UDP, TCP
  1033.  
  1034.      For the installation of TCP/IP and the loopback-interface, please
  1035.      read to the NET-HOWTO.
  1036.  
  1037.   ╖  You are getting all kinds of 'timed out' messages in your TERM log
  1038.      files?  This means that your TERM connection is not optimized. A
  1039.      small number of these messages every now and then is not a problem.
  1040.      These are most certainly due to temporal factors influencing the
  1041.      physical connection between your local and remote hosts.
  1042.  
  1043.      When you get a lot of these messages all the time your connection
  1044.      will slow down considerably. You have to fiddle with the parameters
  1045.      mentioned in the section 'Optimizing your connection' above. Alas,
  1046.      this part of the installation is a process of trial and error. No
  1047.      hard rules can be given about the numbers to be presented to the
  1048.      various parameters as many factors have an influence on the
  1049.      connection. These factors differ between the connections and even
  1050.      in time.
  1051.  
  1052.   ╖  Normal FTP with redirected ports does not work for you? Alas, it is
  1053.      a known problem that redirection of the ports needed by FTP (20 and
  1054.      21) does not give you a working FTP. The only solution is to get a
  1055.      TERM-aware ftp or ncftp version. Alas, also some TERM-aware ftp
  1056.      versions seem not to work.
  1057.  
  1058.   5.  TERM clients
  1059.  
  1060.   TERM provides several default clients. They include trsh, tmon,
  1061.   tupload, tredir, txconn and in newer versions trdate, trdated.
  1062.   Furthermore, starting with version 2.0.0 tudpredir is available and
  1063.   from version 2.1.0 tdownload is available. This section will deal with
  1064.   trsh, tmon, tupload, tdownload, trdate and trdated.  The others each
  1065.   have their own section.  No TERM client will work until you have
  1066.   established a TERM link.
  1067.  
  1068.   tmon is a simple utility to monitor the statistics of your link.  It
  1069.   prints a time histogram of characters transmitted and received. It is
  1070.   invoked simply as tmon. Since around version 1.11, tmon has had a bug
  1071.   that causes some information to be garbled (??).
  1072.  
  1073.   trsh is similar to rsh. Without arguments, it spawns an interactive
  1074.   shell on the remote system (i.e. it logs you in). trsh is one of the
  1075.   primary means of accessing the remote end of the link via TERM. If
  1076.   given an argument, trsh executes that argument as a command on the
  1077.   remote system. For example
  1078.  
  1079.     trsh ls
  1080.  
  1081.   would give you a listing of the files in your home directory on the
  1082.   remote system.
  1083.  
  1084.   tupload will transfer a file, given as its first argument, from local
  1085.   to remote. By default, the files will be put in the same directory
  1086.   that you invoked TERM from at the other side. To put files in another
  1087.   directory, give their names as a second argument to tupload. For
  1088.   example, if I want to put a copy of the file 'term114.tar.gz' in
  1089.   '/usr/tmp' on the remote system, I would type
  1090.  
  1091.     tupload term114.tar.gz /usr/tmp
  1092.  
  1093.   When you use tupload you can use wild cards like in 'tupload a.*'. The
  1094.   shell expands the wild card and tupload is called as 'tupload a.1 a.2
  1095.   ......'.
  1096.  
  1097.   tdownload will transfer a file, given as its first argument, from
  1098.   remote to local. By default, the files will be put in the same
  1099.   directory that you invoked TERM from at the local side. To put files
  1100.   in another directory, give their names as a second argument to
  1101.   tdownload. For example, if I want to put a copy of the file
  1102.   'term114.tar.gz' in '/usr/tmp' on the local system, I would type
  1103.  
  1104.     tdownload term114.tar.gz /usr/tmp
  1105.  
  1106.   When you use tdownload you cannot use wild cards like in 'tdownload
  1107.   a.*'. Reason for this is that the remote directory is not available to
  1108.   your local shell when you use tdownload; so your local shell cannot
  1109.   expand the wild cards.
  1110.  
  1111.   trdate is a time setting utility. It reads the time on the remote
  1112.   machine and sets the local clock to the remote time. It must be run as
  1113.   root.
  1114.   trdated is the daemon version of trdate. When it is started in
  1115.   'rc.local' it is run as daemon in which case it updates the time every
  1116.   5 minutes (default). Even when there is no TERM connection, this
  1117.   daemon will start up when set in the rc.local. Once a TERM connection
  1118.   is created it starts updating the time.
  1119.  
  1120.   6.  X and TERM
  1121.  
  1122.   TERM allows users to open up X windows on the local machine from
  1123.   clients that are running on a machine on the network. This is done by
  1124.   using the txconn client. txconn is executed on the remote, network-
  1125.   connected machine; it is invoked simply as txconn. It goes into the
  1126.   background and returns a number on the standard output; this number is
  1127.   the display number that clients should use to access the X server on
  1128.   the local machine. An example should make this clear.  I am logged in,
  1129.   via trsh, to my remote TERM host, named foo. On foo, I do the
  1130.   following
  1131.  
  1132.     foo$ txconn
  1133.     Xconn bound to screen 10
  1134.     :10
  1135.     foo$
  1136.  
  1137.   Now, on any host that I wish to run an X client on, that is to display
  1138.   on my local machine's X server, I do
  1139.  
  1140.     setenv DISPLAY foo:10
  1141.  
  1142.   (for bash you should use export DISPLAY=foo:10). In some cases it can
  1143.   furthermore be necessary to do a
  1144.  
  1145.     xhost + foo
  1146.  
  1147.   or even a
  1148.  
  1149.     xhost +
  1150.  
  1151.   on your local machine. Now when I start the client, it will try to
  1152.   connect to screen 10 on machine foo, but txconn is listening to this
  1153.   screen, and will forward all X protocol packets via TERM to the X
  1154.   server on the local host - i.e. the window will open up on your local
  1155.   machine.
  1156.  
  1157.   It is possible to go the other way - run a client on your local
  1158.   machine and have it open up a window on a remote machine on the
  1159.   network; however we will defer explaining this until after we have
  1160.   discussed tredir.
  1161.  
  1162.   The X protocol is not very efficient; it wastes some bandwidth. This
  1163.   is usually not a problem over an ethernet, but can be murder over a
  1164.   modem. X11R6 is supposed to introduce a low bandwidth version of the X
  1165.   protocol, LBX. If however you are using X11R5 you can use a utility
  1166.   named sxpc which compresses the X protocol, improving response over
  1167.   serial lines. Sxpc includes a write-up on how to get it working with
  1168.   TERM, and is recommended. The sxpc package also explains how to use
  1169.   xauth; so it is doubly recommended.
  1170.  
  1171.   7.  tredir
  1172.  
  1173.   tredir is one of TERM's most powerful utilities, allowing most
  1174.   important network services to be performed over a TERM link. Before we
  1175.   explain how to use tredir, it is necessary to give some background on
  1176.   network services. We have talked about network services before, but we
  1177.   have not said exactly what they are. Services are just that - services
  1178.   that are provided by the network. Examples of services include telnet,
  1179.   which provides logins between machines, the File Transfer Protocol,
  1180.   ftp, which transfers files between machines, and smtp, the Simple Mail
  1181.   Transfer Protocol, which is used whenever you send electronic mail.
  1182.   Each network service has a port number associated with it.  The
  1183.   mapping of port numbers to services is given in the file internet-
  1184.   connected machines.
  1185.  
  1186.   How are these services invoked? Each networked machine runs a daemon
  1187.   called inetd, which listens for attempts to connect to the network
  1188.   ports. These requests can come from either the network or the local
  1189.   machine. A network service is obtained by connecting to a particular
  1190.   inetd port.  When a network request is made, inetd knows exactly which
  1191.   service is involved by the port number the request is made on. If
  1192.   inetd is configured to do so, it provides the relevant service to the
  1193.   requesting connection. inetd's configuration is given by the file
  1194.   '/etc/inetd.conf', which has a list of the services that inetd
  1195.   provides. For more information, see the man pages for inetd and
  1196.   inetd.conf.
  1197.  
  1198.   You can communicate directly with network services by using telnet
  1199.   (n.b. not termtelnet). For example, to talk to the sendmail, (or smtp)
  1200.   daemon on machine machine_name, you can do a telnet machine_name smtp,
  1201.   or telnet machine_name 25, (since 25 is the number assigned to smtp in
  1202.   '/etc/services'). You should get a polite greeting from the daemon on
  1203.   the remote machine. This is a very useful trick for debugging network
  1204.   problems and checking ports redirected with tredir (see below).
  1205.  
  1206.   Tredir works very much like inetd. It runs in the background as a
  1207.   daemon, listening to the network ports, waiting for a request. When a
  1208.   request for a service is made, instead of providing that service, as
  1209.   inetd does, tredir forwards the request over the TERM link to the
  1210.   remote TERM, which makes the request over the network, returning the
  1211.   result back over the link to the local client. Tredir can forward the
  1212.   request to any machine on the network, but by default sends it to the
  1213.   machine at the other end of the TERM link. Tredir redirects TCP
  1214.   (Transmission Control Protocol) network services over the TERM link.
  1215.  
  1216.   The common command format of tredir is:
  1217.  
  1218.     tredir [this_computer:]port [that_computer:]port
  1219.  
  1220.   An example should make this clear. Let us redirect a local port to the
  1221.   telnet port on the remote machine. To do this we would do
  1222.  
  1223.     tredir 2023 23
  1224.  
  1225.   Now, anyone who connects to port 2023 on the local machine will be
  1226.   redirected to port 23 (telnet) on the remote machine.  Here is an
  1227.   example session; the local machine is mymachine.modem.home and the
  1228.   remote machine is netsun.
  1229.  
  1230.     $ tredir 2023 23
  1231.     Redirecting 2023 to 23
  1232.     $ telnet localhost 2023
  1233.     Trying 127.0.0.1...
  1234.     Connected to mymachine.modem.home
  1235.     Escape character is '^]'.
  1236.  
  1237.     SunOS UNIX (netsun)
  1238.     login:
  1239.  
  1240.   This example is actually quite useful. If I were instead to do the
  1241.   tredir on netsun. I could then telnet in to mymachine from the network
  1242.   simply by connecting to the redirected port on the networked machine
  1243.   (using telnet) - i.e. telnet netsun 2023.
  1244.  
  1245.   The general principle in using tredir is to redirect the desired
  1246.   service to a machine on the network. Our next example will allow us to
  1247.   read news on the local machine over our TERM link from a news server
  1248.   on the network. News is provided by the nntp service, port number 119.
  1249.   All decent news readers allow you to specify what port number they
  1250.   will use, either via a configuration file or an environment variable.
  1251.   Let us specify this local port to be 2119. Now, let us say that our
  1252.   news server is news.domain.org. We will redirect port 2119 to port 119
  1253.   on news.domain.org; we will then tell our news reading software that
  1254.   the nntp server is located at port 2119 on the local host. Since this
  1255.   will depend on the news reader that you use, I will just test the link
  1256.   with telnet instead of firing up a news reader:
  1257.  
  1258.     $ tredir 2119 news.domain.org:119
  1259.     Redirecting 2119 to news.domain.org:119
  1260.     $ telnet localhost 2119
  1261.     Trying 127.0.0.1...
  1262.     Connected to mymachine.modem.home.
  1263.     Escape character is '^]'.
  1264.     200 news.domain.org InterNetNews NNRP server INN 1.4 07-Dec-41 ready
  1265.     (posting ok).
  1266.  
  1267.   If you can get this far, all you have to do is configure your news
  1268.   reader to be able to read news via TERM. (n.b., if you read news like
  1269.   this, be sure that in all your posts you set a Reply-To: header to an
  1270.   network email address that you can be reached at, otherwise people who
  1271.   want to get in touch with you will be sending mail to whatever (wrong)
  1272.   data your news reader puts in the From: header).
  1273.  
  1274.   7.1.  tredir can bite!
  1275.  
  1276.   The astute reader, after reading the last example will be wondering
  1277.   why port 2119 was redirected to port 119 - since news readers default
  1278.   to port 119, why could I not do a tredir 119 news.domain.org:119 and
  1279.   skip the news reader configuration? The answer is that all ports
  1280.   numbered less than 1024 are ``reserved ports'', and only the superuser
  1281.   can listen to them. If one is willing to take a security risk and make
  1282.   tredir an SUID program, or run tredir as root, then one can redirect
  1283.   reserved ports and avoid the hassle of renaming services.
  1284.  
  1285.   Another problem with using reserved ports is that inetd is often
  1286.   already listening to these ports, and only one program at a time can
  1287.   listen to a port. In order to use such a port, you must change port
  1288.   you want to redirect. This is most easily done by commenting out the
  1289.   line with the offending service by putting a # character at the
  1290.   beginning of the line. The superuser must then send inetd a HUP signal
  1291.   (kill -1 inetd-pid) to get it to reread its configuration.
  1292.  
  1293.   7.2.  Stupid tredir tricks
  1294.  
  1295.   In this section we will describe some of the more common uses for
  1296.   tredir. We have already described how to redirect nntp and telnet
  1297.   services; here we will give some more complicated examples.
  1298.  
  1299.   7.2.1.  X windows
  1300.  
  1301.   In a previous section, we described how to get an X client running on
  1302.   the network to open a window on your home machine using txconn. The
  1303.   same technique could be used on your home machine to display a client
  1304.   on the machine at the remote end of your TERM link.  But how does one
  1305.   display an X client on a network machine that is not the remote end?
  1306.   The answer lies in knowing that X uses a particular network service
  1307.   just like the other programs we have been discussing. An X server
  1308.   listens for a network request on a port whose number is given by the
  1309.   formula  port = 6000 + display number, e.g. an X server managing
  1310.   screen 0 on a machine would listen to port 6000, if it were managing
  1311.   screen 2, it would listen to port 6002.  When you set your DISPLAY
  1312.   environment variable to xmachine:n, your X clients will try to connect
  1313.   to port 6000 +n on xmachine.
  1314.  
  1315.   We can use this to trick X clients on your local machine to open up
  1316.   windows on remote displays. Let us say I want to open up an xterm,
  1317.   running on my local machine, on display 0 of machine xmachine, which
  1318.   is running some place on the network. I first pick a local display
  1319.   number, say 2 (do not use 0, since that is what your local X server
  1320.   will be using). I will map this display to display 0 on xmachine. In
  1321.   terms of ports, this means I want to redirect the local port 6002 to
  1322.   the remote port 6000.  I do the following
  1323.  
  1324.     $ tredir 6002 xmachine:6000
  1325.     $ setenv DISPLAY localhost:2
  1326.     $ xterm
  1327.  
  1328.   This should open up an xterm on machine xmachine.  Note that I set the
  1329.   DISPLAY to localhost:2. This is because X clients will sometimes use
  1330.   unix domain sockets instead of internet domain sockets, at their own
  1331.   option, when connecting to a local display, if DISPLAY is set to :2.
  1332.   localhost:2 says to use a TCP connection.
  1333.  
  1334.   Note that as far as xmachine is concerned, the X request is coming
  1335.   from the machine on the remote end of your TERM link (remotemachine) -
  1336.   so if you need to authorize the connection, you should either do an
  1337.   xhost + remotemachine on xmachine or use xauth to update the
  1338.   '.Xauthority' file on your local machine for display number 2, using
  1339.   the key from xmachine.
  1340.  
  1341.   Again, to speed up X connections, you can use the program sxpc, which
  1342.   includes an explanation of how to use tredir to establish the link and
  1343.   authorize it using xauth.
  1344.  
  1345.   7.2.2.  Mail with TERM
  1346.  
  1347.   Well, you asked for it. Electronic mail has the justifiable reputation
  1348.   of being one of the most difficult things to get working right on a
  1349.   UNIX system. To really get TERM working correctly with mail means that
  1350.   you have to understand how mail works, which is beyond the scope of
  1351.   this document. To learn more about mail, you should consult a book on
  1352.   UNIX system administration and/or the comp.mail.misc FAQ, available
  1353.   for anonymous ftp on rtfm.mit.edu:pub/usenet/comp.mail.misc. There are
  1354.   also currently two packages available for anonymous ftp on
  1355.   sunsite.unc.edu that will help you get mail running under TERM - they
  1356.   are term.mailerd+smail by Byron A. Jeff and the BCRMailHandlerXXX by
  1357.   Bill C. Riemers.
  1358.  
  1359.   That being said, we will give a thumbnail description of how mail
  1360.   works.  There are two parts to getting mail running, sending messages
  1361.   and receiving messages. We will begin with sending messages from your
  1362.   local box to the network.
  1363.  
  1364.   There are two classes of mail programs. The first is the mail user
  1365.   agent (MUA). MUA's help you read, compose and send messages. Examples
  1366.   of MUA's are elm, pine, Mail and vm.  MUA's do not really do any
  1367.   networking; they just put the messages together - the real work of
  1368.   sending mail is done by the second class of mail programs, the mail
  1369.   transfer agents (MTA's). These are invoked by the MUA's. They take the
  1370.   message, decide where to send it by looking at the address, and then
  1371.   actually deliver it over the network.
  1372.  
  1373.   The two most common MTA's on Linux systems are sendmail and smail. The
  1374.   basic idea is to get your MTA to connect to another MTA running on a
  1375.   machine on the net that will know what to do with your message. This
  1376.   is done by redirecting a local port to the smtp port on the net
  1377.   machine. You then have to tell you MTA to take any message it does not
  1378.   know what to do with, and send it out over the redirected port on your
  1379.   local machine to the MTA on the remote machine, which will then route
  1380.   your message to its correct destination.
  1381.  
  1382.   How do we do this using smail?  We first redirect a port to the smtp
  1383.   port on the network mail machine (mailhost):
  1384.  
  1385.   tredir XXXX mailhost:25
  1386.  
  1387.   here XXXX is the port number that the smail on the localhost will
  1388.   connect to (note that I have to give this port a name in my
  1389.   '/etc/services' to get smail to recognize it). Smail has several
  1390.   configuration files that usually live in '/usr/local/lib/smail'. The
  1391.   ones we care about are that I am assuming you have already got smail
  1392.   configured correctly for local mail - delivery to files and pipes and
  1393.   such things.  Again, consult the documentation if you have not.
  1394.  
  1395.   In the file 'config', we put the following definition:
  1396.  
  1397.     smart_path=localhost
  1398.  
  1399.   localhost is the machine that smail connects to when it does not know
  1400.   what to do with a message.
  1401.  
  1402.   In 'routers' we put
  1403.  
  1404.     smart_host:
  1405.     driver=smarthost,
  1406.     transport=termsmtp;
  1407.     path = localhost
  1408.  
  1409.   In 'transports' we put
  1410.  
  1411.     termsmtp:        driver=tcpsmtp,
  1412.           inet,
  1413.           return_path,
  1414.           remove_header="From",
  1415.           append_header="From: YOUR_NET_ADDRESS",
  1416.           -received,
  1417.           -max_addrs, -max_chars;
  1418.           service=YOUR_SMTP_SERVICE,
  1419.  
  1420.   In the above, the header lines change the From header in all your
  1421.   outgoing mail to the address, YOUR_NET_ADDRESS, which is the network
  1422.   address you want mail sent to. If more than one user is going to be
  1423.   using your TERM link, you will have to do something more fancy, like
  1424.   keep a database of local user's network addresses and insert these in
  1425.   the From: headers.
  1426.  
  1427.   The service line is the name of the local port number that you have
  1428.   redirected to the smtp port on the network connected machine. In my
  1429.   version of smail, I cannot just set this to a number, I have to set it
  1430.   to a name, like ``foo'', and then define ``foo'' in my '/etc/services'
  1431.   to be the number of my redirected port. If you use a SUID tredir and
  1432.   just redirect the smtp port (25), you do not need to define this.
  1433.  
  1434.   This should be enough to get you going. If you decide to use sendmail,
  1435.   the principles are the same but the details differ.  Ronald Florence
  1436.   (ron@mlfarm.com) told me that the stock Sun sendmail will not send
  1437.   multiple queued messages over a redirected port; BSD sendmail 8.6.9
  1438.   works fine.  He made the following changes to '/etc/sendmail.cf' to
  1439.   get it working with TERM. In his case, the default sendmail port (25)
  1440.   is used for SMTP traffic over a local ethernet so Internet mail is
  1441.   forwarded to a redirected TCP port.
  1442.  
  1443.     #
  1444.     #Create the termsmtp mailer, which sends mail via a re-directed TCP port
  1445.     #
  1446.     Mtermsmtp,P=[TCP], F=mDFMuCXe, S=22, R=22, A=TCP $h PORTNUMBER
  1447.  
  1448.   Here, PORTNUMBER is the number of the redirected port on the local
  1449.   machine. This should be an unused port over 2000. We next tell
  1450.   sendmail which machine to connect to, and set termsmtp as the default
  1451.   mailer.
  1452.  
  1453.     #
  1454.     # major relay mailer
  1455.     #
  1456.     DMtermsmtp
  1457.     #
  1458.     # major relay host: use the $M mailer to send mail to other domains
  1459.     #
  1460.     DR HOSTNAME
  1461.     CR HOSTNAME
  1462.  
  1463.   Here HOSTNAME is the name of your local host (does localhost work?).
  1464.   The last entry goes under Rule 0 to forward Internet mail.
  1465.  
  1466.     # Pass other valid names up the ladder to our forwarder
  1467.     R$*<@$*.$+>$*         $#$M    $@$R $:$1<@$2.$3>$4     user@any.domain
  1468.  
  1469.   When the TERM connection is established to the Internet host, run the
  1470.   following commands on the local machine.
  1471.  
  1472.     tredir PORTNUMBER internet.host:25
  1473.     /usr/lib/sendmail -q
  1474.  
  1475.   We now turn to receiving electronic mail using TERM. We will assume
  1476.   that mail is sent to your account on the network machine mailhost. The
  1477.   simplest solution is to just use trsh or termtelnet to log on to
  1478.   mailhost and read your mail on there. However, it is also possible to
  1479.   have your mail automatically downloaded to your local machine. One way
  1480.   to do this is to use the Post Office Protocol, (POP). POP was designed
  1481.   for exactly this purpose: to deliver mail to machines that have
  1482.   intermittent network connections. To use POP, you must have a POP
  1483.   server installed on mailhost. Assuming that you do, you can then use a
  1484.   POP client to download your mail every few minutes. This is done, as
  1485.   you might expect, using tredir. The POP service is 110 (note that
  1486.   there is an older protocol, POP-2, which uses port 109; in this
  1487.   document we describe POP-3, which is the latest version of POP). There
  1488.   are several POP clients available. One, written in the script language
  1489.   perl is pop-perl-1.X, written by William Perry and maintained by
  1490.   myself - it can be found on sunsite.unc.edu:pub/Linux/system/Mail.
  1491.  
  1492.   To use POP, you redirect a local port to port 110 on mailhost and
  1493.   configure your client to retrieve your mail from localhost using the
  1494.   local port. As an example, we will assume that there is a POP server
  1495.   running on mailhost. We will redirect the local port 2110, and fire up
  1496.   the pop-perl client:
  1497.  
  1498.     $ tredir 2110 mailhost:110
  1499.     Redirecting 2110 to mailhost:110
  1500.     $ pop
  1501.     Username: bill
  1502.     Password: <enter your password for mailhost>
  1503.     Pop Host: name of local
  1504.     Pop Port: 2110
  1505.     Starting popmail daemon for bill
  1506.  
  1507.   If you do not have a POP server available, the BCRMailHandler package
  1508.   has a program to download your mail over a TERM link to your local
  1509.   machine. I have not used it, but anyone who has is welcome to comment.
  1510.   You can also use the term.mailerd+smail package for this purpose.
  1511.   Alas, both BCRMailHandler and the term.mailerd.smail package do not
  1512.   work anymore with TERM versions 2.0.0 and higher.
  1513.  
  1514.   8.  tudpredir
  1515.  
  1516.   tudpredir is similar to tredir when you look at what these programs do
  1517.   and how they are executed. The big difference between the two programs
  1518.   is that tredir is used to redirect TCP network services while
  1519.   tudpredir redirects UDP (User Datagram Protocol) network services over
  1520.   the TERM link. One more important difference between the two programs
  1521.   is that tredir becomes a background daemon once it has successfully
  1522.   established the local port, while tudpredir commands must be placed in
  1523.   the background manually.
  1524.  
  1525.   The common command format of tudpredir is:
  1526.  
  1527.     tudpredir [this_computer:]port [that_computer:]port
  1528.  
  1529.   9.  Automating Things
  1530.  
  1531.   Now that you know how to get all your network services over TERM, it
  1532.   would be nice to set things up in such a way that your link is set up
  1533.   and configured automatically. There are basically an infinite number
  1534.   of ways of doing so, depending on what communication program you use
  1535.   and how you log in to your remote system.
  1536.  
  1537.   One program that I have not used, but I have heard is quite nice, is
  1538.   fet: a front end for TERM. It is designed to log you into a remote
  1539.   system and fire up TERM and all your tredir's.  Any comments on fet
  1540.   would be most welcome.
  1541.  
  1542.   I shall now give an example of a set of commands that use kermit to
  1543.   log into the remote system and then performs all of the TERM
  1544.   initializations. Obviously, if you use these examples, you will have
  1545.   to modify them for your own login procedures.
  1546.  
  1547.   The command which is actually invoked is the shell script 'knet',
  1548.   given by:
  1549.  
  1550.     #!/bin/sh
  1551.     /usr/bin/kermit -y $HOME/.kerm_term > $HOME/klog < /dev/null 2>& 1
  1552.     exec $HOME/bin/tstart >> $HOME/klog 2>& 1
  1553.  
  1554.   The script '.kerm_term' is given by:
  1555.  
  1556.     pause 2
  1557.     # The number you want to dial
  1558.     output atdtXXXXXXX \13
  1559.     # Login to the terminal server
  1560.     input 145 {name: }
  1561.     output MYNAME \13
  1562.     input 3 {word: }
  1563.     output MYPASSWORD \13
  1564.     input 5 {xyplex>}
  1565.     # Make the line transparent
  1566.     output term telnet-t \13
  1567.     output term stopb 1 \13
  1568.     # Connect to the remote host
  1569.     output telnet remotehost.somedomain.org \13
  1570.     input 10 {ogin: }
  1571.     output MYOTHERNAME \13
  1572.     input 3 word:
  1573.     output MYOTHERPASSWORD \13
  1574.     pause 5
  1575.     # Fire up term on the remote host
  1576.     output exec term -s 38400 -l $HOME/tlog -w 10 -t 150  \13
  1577.     ! /usr/bin/term -r -l $HOME/tlog -s 38400 -c off -w 10 -t 150 < /dev/modem  > /dev/modem &
  1578.     # Open other clients here
  1579.     suspend
  1580.     !killall -KILL term
  1581.  
  1582.   and finally, the script 'tstart' which fires up the TERM clients is
  1583.   given by
  1584.  
  1585.     #!/bin/sh
  1586.     #
  1587.     # This lets mail get out, can read news here, can pick up my mail here
  1588.     #
  1589.     /usr/local/bin/tredir 2025 25 2119 newshost:119 2110 pophost:110
  1590.     #
  1591.     # So I can open up Xwindows here
  1592.     #
  1593.     /usr/local/bin/trsh -s txconn
  1594.     #
  1595.     # So I will receive mail....
  1596.     #
  1597.     /usr/local/bin/pop
  1598.     #
  1599.     # Clean out the queue, in case of boo-boos
  1600.     #
  1601.     /usr/bin/runq
  1602.     #
  1603.     # Done now
  1604.     #
  1605.     echo ^G^G > /dev/console
  1606.  
  1607.   When finally you want to close the connection, you resume and
  1608.   terminate kermit. The last line of the script kills the local TERM and
  1609.   returns the system in its initial state.
  1610.  
  1611.   ( Note of the author: instead of doing '!killall -KILL term', I think
  1612.   it should be possible just to do '!tshutdown'. This should also work?)
  1613.  
  1614.   As I said, there are zillions of ways to do so; these are just meant
  1615.   as examples to get you started. Other examples can be found in the
  1616.   packages autoterm and JoelTermStuff.
  1617.  
  1618.   10.  Porting software for use with TERM
  1619.  
  1620.   In principle, all programs that can be used over a network can also be
  1621.   used in combination with TERM. Some of them you can get as binaries
  1622.   with TERM support already built in. These include telnet, (nc)ftp,
  1623.   Mosaic and many others. Most of these programs are compiled for TERM
  1624.   1.17 or earlier. They should, however, still work with the newer
  1625.   versions of TERM.
  1626.  
  1627.   Another way to make programs TERM aware is to port them yourself. This
  1628.   process will be described in the next subsection.
  1629.  
  1630.   The last way to make your programs TERM-aware is to termify them.
  1631.  
  1632.   10.1.  Port and compile the sources
  1633.  
  1634.   Porting software to TERM can be done using a fairly simple porting
  1635.   procedure:
  1636.  
  1637.   If installed in '/usr/local' by root:
  1638.  
  1639.   1. Add to the compile flags -include /usr/local/include/termnet.h
  1640.  
  1641.   2. and add to the library list -ltermnet
  1642.  
  1643.   If installed in your home directory:
  1644.  
  1645.   1. Add to the compile flags -include $HOME/term/termnet.h
  1646.  
  1647.   2. and add to the library list -L$HOME/term -ltermnet
  1648.  
  1649.   Now compile the software as described in the INSTALL or README
  1650.   document that came with the software. That should do!
  1651.  
  1652.   At this point the commands should work both with and without TERM.
  1653.  
  1654.     telnet localhost
  1655.  
  1656.   does not use TERM to connect, but
  1657.  
  1658.     telnet bohr.physics.purdue.edu
  1659.  
  1660.   will use TERM only if you do not have some other type of network
  1661.   connection.
  1662.  
  1663.   Some commands like rlogin can only be executed by root and the owner
  1664.   of the TERM connection (privileged persons).
  1665.  
  1666.   Some TERM commands will be TERM transparent and only use TERM when
  1667.   there is not another option. Some common examples are telnet and ftp.
  1668.  
  1669.   Others require an external flag to tell them it is all right to use
  1670.   TERM. These programs include xarchie, fsp and ytalk.
  1671.  
  1672.   You can either flag these programs to use TERM by setting the
  1673.   environmental variable TERMMODE as specified in README.security, or
  1674.   running make installnet. Eventually, the 'termnet' file created will
  1675.   contain special networking instructions, but for now only its
  1676.   existence is checked.
  1677.  
  1678.   If you add an ethernet connection, you can then simply remove the
  1679.   'termnet' file and continue to use the same binaries!
  1680.  
  1681.   NOTE: Programs that were ported back in the days of client.a, can
  1682.   still be recompiled for use with newer versions of TERM simply by
  1683.   changing the client.a reference to libtermnet.a.
  1684.  
  1685.   10.2.  Termify
  1686.  
  1687.   This package will convert dynamically linked binaries for TERM use.
  1688.  
  1689.   Before you can use termify you have to make sure that you have TERM
  1690.   version 2.2i (is this version 2.2.8?) or later and libc.so.4.5.26 or
  1691.   later. Then you have to create the file 'libt.so.4' in the directory
  1692.   '/lib' (see the README file in the package).
  1693.  
  1694.   Problem at this moment is that you have to remake the file 'libt.so.4'
  1695.   every time you upgrade TERM versions.
  1696.  
  1697.   After you have created the library you can let termify 'crunch' the
  1698.   program you want to make TERM-aware, by using the command:
  1699.  
  1700.     termify <command name>
  1701.  
  1702.   When you do not like the result you can 'un'termify the program you
  1703.   have just termified using the command:
  1704.  
  1705.     termify -u <command name>
  1706.  
  1707.   Last, the package also contains a script for completely termifying
  1708.   'smail'; so no special transport definitions are necessary. The only
  1709.   thing you possibly want to change is the 'From: ' address.
  1710.  
  1711.   11.  Term clients
  1712.  
  1713.   11.1.  Term clients available on ftp sites.
  1714.  
  1715.   Below a list of application running with TERM is given. I am not
  1716.   stating that this list is complete; so any completion is welcome. As
  1717.   far as possible I will present the site and directory where the
  1718.   application can be found (all to my knowledge). When I state
  1719.   sunsite.unc.edu as the place to find the application I mean that you
  1720.   can find it in one of the following two directories:
  1721.  
  1722.   1. /pub/Linux/apps/comm/term/apps
  1723.  
  1724.   2. /pub/Linux/apps/comm/term/extra
  1725.  
  1726.   Here we go :-)
  1727.  
  1728.   TERM package:
  1729.  
  1730.        tupload
  1731.        tdownload           (versions 2.1.0 and higher)
  1732.        trsh
  1733.        tmon
  1734.        tredir
  1735.        tudpredir           (versions 2.0.0 and higher)
  1736.        txconn
  1737.        trdate(d)
  1738.        tshutdown
  1739.        libtermnet
  1740.  
  1741.   File transfer:
  1742.  
  1743.        ftpd                sunsite.unc.edu
  1744.        termncftp           sunsite.unc.edu
  1745.        ncftp185            sunsite.unc.edu:/pub/Linux/system/Network/file-transfer
  1746.        fsp                 sunsite.unc.edu:/pub/Linux/system/Network/file-transfer
  1747.  
  1748.   Information systems:
  1749.  
  1750.        lynx
  1751.        Mosaic              sunsite.unc.edu:/pub/Linux/system/Network/info-systems/Mosaic
  1752.        chimera
  1753.        netscape            sunsite.unc.edu:/pub/Linux/system/Network/info-systems
  1754.        httpd
  1755.        xgopher
  1756.        gopher              sunsite.unc.edu
  1757.  
  1758.   Remote login:
  1759.  
  1760.        termtelnet          sunsite.unc.edu
  1761.        rlogin              physics.purdue.edu:/pub/bcr/term/extra
  1762.        rsh                 physics.purdue.edu:/pub/bcr/term/extra
  1763.  
  1764.   Netnews:
  1765.  
  1766.   tin 1.3             sunsite.unc.edu:/pub/Linux/system/Mail/news
  1767.   news2               sunsite.unc.edu
  1768.  
  1769.   Mail:
  1770.  
  1771.        slurp               sunsite.unc.edu
  1772.        smail               sunsite.unc.edu
  1773.        term.mailerd+smail  sunsite.unc.edu
  1774.        BCRMailHandlerXXX   physics.purdue.edu:/pub/bcr/term
  1775.  
  1776.   Automating scripts:
  1777.  
  1778.        JoelTermStuff       sunsite.unc.edu
  1779.        autoterm            sunsite.unc.edu
  1780.        fet                 sunsite.unc.edu
  1781.  
  1782.   Other programs:
  1783.  
  1784.        inetd               sunsite.unc.edu
  1785.        rdate               sunsite.unc.edu
  1786.        xgospel             sunsite.unc.edu:/pub/Linux/games/x11/networked
  1787.        termify             physics.purdue.edu:/pub/bcr/term/extra
  1788.        xboard              sunsite.unc.edu
  1789.        ircII               sunsite.unc.edu:/pub/Linux/system/Network/chat
  1790.        whois
  1791.        xwebster            sunsite.unc.edu
  1792.        sxpc                ftp.x.org:/R5contrib
  1793.        xztalk              sunsite.unc.edu:/pub/Linux/apps/sound/talk
  1794.  
  1795.   11.2.  The termnet package
  1796.  
  1797.   The package termnet-2.0.4-Linux-bin.tar.gz
  1798.   (sunsite.unc.edu:/pub/Linux/apps/comm/term) contains a couple of pre-
  1799.   compiled TERM clients and a couple of scripts, manual pages and
  1800.   libtermnet.so.2.00.04. The clients are compiled using this version of
  1801.   libtermnet.so. The package contains the following clients:
  1802.  
  1803.        fet         perl        sperl4.036  tmon        tshutdown   xgopher
  1804.        finger      perl4.036   suidperl    trdate      tudpredir   ytalk
  1805.        ftp         rcp         taintperl   trdated     tupload
  1806.        fwhois      rlogin      telnet      tredir      txconn
  1807.        ncftp       rsh         term        trsh        xarchie
  1808.  
  1809.   WARNING: The package also contains the complete set of compiled
  1810.   clients of TERM 2.0.4 including TERM itself. Do not install this
  1811.   package before you are sure about what you want. You will destroy
  1812.   other versions of TERM and its clients when you start moving
  1813.   executables around.
  1814.  
  1815.   11.3.  Asked for but not yet supported
  1816.  
  1817.   1. DOOM: The problem with this game seems to be the fact that it uses
  1818.      port 5029 both as client and as server.
  1819.  
  1820.   2. NFS: The NFS server is only supposed to accept requests if the
  1821.      socket requesting the connection is bound to a port below 1024.
  1822.      This seems to be troublesome. However, some NFS servers have an
  1823.      'insecure' option.  In this case NFS might work eventually, if RPC
  1824.      support is added to Term.
  1825.  
  1826.   12.  Term and Security
  1827.  
  1828.   In this section I will point to some security aspects of TERM. The
  1829.   problems will be explained and a way to improve security will be
  1830.   given.
  1831.  
  1832.   12.1.  trsh
  1833.  
  1834.   Trsh is insecure when it is used to access the local Linux box from
  1835.   the remote system. The problem with TERM and its clients is that
  1836.   beside the owner of the TERM connection also 'root' can execute TERM-
  1837.   aware programs over the connection.
  1838.  
  1839.   This also means that 'root' on the remote system can execute trsh and
  1840.   thus can enter the login which owns the TERM connection quite easy. If
  1841.   this owner on the local box is 'root' then you will be in hell.
  1842.  
  1843.   The solution to this problem is easy: you just have to put the
  1844.   following line in the termrc┤ file on the local box:
  1845.  
  1846.     denyrsh on
  1847.  
  1848.   With this set in the 'termrc' file, nobody can use trsh on the remote
  1849.   site anymore to access your machine. When you and others want to
  1850.   access your local Linux box over the TERM connection this can still be
  1851.   done using telnet and redirected ports.
  1852.  
  1853.   12.2.  txconn and xauth
  1854.  
  1855.   Txconn is not terribly secure; anyone can connect to your local server
  1856.   via TERM and perform all sorts of mischief. I you are worried about
  1857.   this sort of thing, it might be a good idea to consider using xauth to
  1858.   authorize your connections. See the next section for an example of
  1859.   using xauth for securing your connections.
  1860.  
  1861.   12.3.  sxpc, xhost and xauth
  1862.  
  1863.   Sxpc in combination with 'xhost +' is very dangerous when you are not
  1864.   using xauth.
  1865.  
  1866.   Using xauth is very important to maintaining security when using sxpc.
  1867.   If you do not use xauth when using sxpc all the dangers of running
  1868.   with 'xhost +' apply. These dangers include but are not limited to:
  1869.  
  1870.   ╖  Someone watching what is displayed on your screen
  1871.  
  1872.   ╖  Someone watching what you type
  1873.  
  1874.   ╖  Someone typing in one of your windows (for example: a command to
  1875.      delete all your files :-(
  1876.  
  1877.   Xauth is available in X releases R4 and later. Here I will describe
  1878.   how to set up basic usage of xauth.  This configuration is vulnerable
  1879.   to network snooping, but if you can live with that it should be fine.
  1880.  
  1881.   NOTE: when using xauth your $DISPLAY variable must NOT be set to
  1882.   localhost (or localhost:whatever). If your $DISPLAY variable does use
  1883.   localhost the clients will be unable to find the appropriate
  1884.   authorization information. The workaround is to use the real hostname
  1885.   of the machine. If you follow the compilation instructions in the
  1886.   README, and compile without -DNOGETHOSTNAME then everything should
  1887.   work.
  1888.  
  1889.   The machine where you will be running clients will be called C, the
  1890.   machine where you wish to display them will be called D.
  1891.  
  1892.   First choose a 'key', up to 16 pairs of hexadecimal digits (so an even
  1893.   number of characters from the ranges 0-9 and a-f).  You will need to
  1894.   supply this key in place of <key> in the example below.
  1895.  
  1896.   On C:
  1897.  
  1898.     % xauth
  1899.     xauth:  creating new authority file $HOME/.Xauthority
  1900.     Using authority file $HOME/.Xauthority
  1901.     xauth> add Chostname:8 MIT-MAGIC-COOKIE-1 <key>
  1902.     xauth> exit
  1903.  
  1904.   On D:
  1905.  
  1906.     % xauth
  1907.     xauth:  creating new authority file $HOME/.Xauthority
  1908.     Using authority file $HOME/.Xauthority
  1909.     xauth> add Dhostname/unix:0 MIT-MAGIC-COOKIE-1 <key>
  1910.     xauth> add Dhostname:0 MIT-MAGIC-COOKIE-1 <key>
  1911.     xauth> exit
  1912.  
  1913.   When starting the X server on D you should give the flag -auth
  1914.   $HOME/.Xauthority.  You may need to edit or create a
  1915.   '$HOME/.xserverrc' to control how the X server is started.  For
  1916.   example:
  1917.  
  1918.     #!/bin/sh
  1919.     exec X  -auth $HOME/.Xauthority $*
  1920.  
  1921.   Make sure that your '.Xauthority' file is readable only by you on both
  1922.   C and D.
  1923.  
  1924.   13.  Things to remember
  1925.  
  1926.   In this section I try to present you with a list of useful ftp
  1927.   addresses, URL's etc. where you can find software and information
  1928.   about TERM.
  1929.  
  1930.   Ftp:
  1931.  
  1932.   sunsite.unc.edu:/pub/Linux/apps/comm/term/<whole-directory-tree>
  1933.   sunsite.unc.edu:/pub/Linux/docs/HOWTO/<whole-directory-tree>
  1934.   physics.purdue.edu:/pub/bcr/term/<whole-directory-tree>
  1935.  
  1936.   URL:
  1937.  
  1938.   http://sunsite.unc.edu/mdw/HOWTO/Term-HOWTO.html
  1939.   http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html  (always the newest version)
  1940.   http://physics.purdue.edu/~bcr/homepage.html
  1941.  
  1942.   Netnews:
  1943.  
  1944.   comp.os.linux.announce           announce of new TERM versions and Term-HOWTO
  1945.   comp.os.linux.help               ask your questions about TERM here
  1946.   comp.os.linux.misc               or here
  1947.   comp.protocols.misc              answers to TERM questions are also posted here.
  1948.  
  1949.   Related documents:
  1950.  
  1951.   Using Term to Pierce an Internet Firewall HOWTO    by Barak Pearlmutter,
  1952.                                                         bap@learning.scr.siemens.com
  1953.   Firewall HOWTO                                     by David Rudder,
  1954.                                                         drig@execpc.com
  1955.   Serial HOWTO                                       by Greg Hankins,
  1956.                                                         gregh@cc.gatech.edu
  1957.   Net-2/Net-3 HOWTO                                  by Terry Dawson,
  1958.                                                         terryd@extro.ucc.su.oz.au
  1959.  
  1960.   When you start asking questions on netnews please make sure that you
  1961.   give people in the groups as much information as they need to solve
  1962.   your problem (TERM version number, way you set up your connection
  1963.   etc.). At this moment many TERM versions are in use and all have their
  1964.   specific and common problems. Therefore, when you want a useful
  1965.   answer, at least state the version of TERM you are using. Otherwise,
  1966.   in some cases only wild guesses are possible to help you solve your
  1967.   problems.
  1968.   14.  Reliability of TERM versions
  1969.  
  1970.   Many versions of TERM are around now. The maintainer of TERM, Bill
  1971.   Riemers, has made a list of TERM versions stating what versions are
  1972.   reliable and what versions you had better avoid. This list is the
  1973.   following:
  1974.  
  1975.                term110          --> cannot really say
  1976.                term111          --> cannot really say
  1977.                term112          --> cannot really say
  1978.                term113          --> cannot really say
  1979.                term114          --> fairly stable BETA version
  1980.                term115          --> unstable BETA version
  1981.                term116          --> unstable BETA version
  1982.                term117          --> unstable BETA version
  1983.                term118          --> semi-stable BETA version
  1984.                term119          --> stable GAMMA version
  1985.                term-2.0.X       --> semi-stable BETA versions
  1986.                term-2.1.X       --> more stable BETA versions
  1987.                term-2.2.X       --> new BETA versions
  1988.                term-2.3.X       -->
  1989.  
  1990.   15.  Term speed table
  1991.  
  1992.   Thanks to Bill McCarthy we now have a table with TERM speed
  1993.   information for different modems, TERM versions and connection
  1994.   conditions. Its purpose is to give new and experienced users some idea
  1995.   what other people are using and the results they are getting.
  1996.  
  1997.                              LINUX TERM CHART 8/14/94
  1998.  
  1999.   |___modem speed/make___|___line speed__|__avg cps__|__high__|__term ver_|
  2000.   | 1)  USR SP 14.4      |   9600        |  950      |  963   | 1.17      |
  2001.   | 2)  USR SP 14.4      |  14400        | 1376      |  n/a   | 1.18p06   |
  2002.   | 3)  Zoom 2400        |   2400        |  220      |  230   | 1.19      |
  2003.   | 4)  Boca V.32bis 14  |  57600        | 1400      |  n/a   | 1.01/09?  |
  2004.   | 5)  Viva 14.4        |  14400        | 1300      |  n/a   | 1.16      |
  2005.   | 6)  USR SP 14.4      |  14400+       | 1550      | 1680   | 1.19      |
  2006.   | 7)  Intel 14.4 Fax   |  14400        | 1400      | 1650   | 2.0.4     |
  2007.   | 8)  cable tv hookup  |  57600        | 1500      | 1800   | 1.18p06   |
  2008.   | 9)  Twincom 144/DFi  |  57600        | 1500      | 4000?  | 2.0.4     |
  2009.   | 10) USR SP 14.4      |  14400        | 1200      | 1500   | 1.08      |
  2010.   | 11) cable tv hookup  |  19200        | 1300      | 1800   | 1.19      |
  2011.   |-----------------------------------------------------------------------|
  2012.  
  2013.   +Command flags/termrc settings:
  2014.  
  2015.   1) default escapes   2) window 5       3) baudrate 2400    4) n/a
  2016.      baudrate 9600        timeout 200       window 3
  2017.      window 10                              noise on
  2018.      timeout 150
  2019.  
  2020.   5) compress off      6) baudrate 19200  7) ignore 19+17    8) compress off
  2021.      window 10            compress on        window 4           escape 0, 13,
  2022.      timeout 150                             timeout 90         16-19, 255
  2023.      baudrate 38400                                             baudrate 0
  2024.                                                                 shift 224
  2025.                                                                 flowcrtl 500
  2026.                                                                 window 10
  2027.                                                                 timeout 70
  2028.                                                                 retrain on
  2029.                                                                 breakout 24
  2030.   9) compress off     10) compress off      11) baudrate 19200
  2031.      baudrate 57600       baudrate 38400        compress on
  2032.      window 10            escape 17, 19         shift 224
  2033.      timeout 200          remote                escape 0, 13 16-17
  2034.      noise on                                   19, 255
  2035.      share on                                   window 10
  2036.      remote                                     timeout 40
  2037.  
  2038.   Escaping characters at one end also implies ignoring them on the other end.
  2039.  
  2040.   16.  Hints and Tricks found on the net
  2041.  
  2042.   In the Linux related newsgroups many questions about TERM are coming
  2043.   back every couple of weeks, together with the answers to these
  2044.   questions. To reduce traffic to the newsgroup, in this section I shall
  2045.   try to make a composition of these questions and the answers to them.
  2046.   Some of the answers have been checked by me as I also had related
  2047.   problems. Others, I have just taken from the newsgroups without
  2048.   testing them.
  2049.  
  2050.   ╖  Many people, especially those who are using Ultrix, seem to have
  2051.      trouble with vi presenting less than 24 lines on a window with 24
  2052.      lines. There are three ways to get rid of this problem:
  2053.  
  2054.      1. Log in into the remote system using:
  2055.  
  2056.           trsh -s telnet <hostname>
  2057.  
  2058.      2. Put 'resize; clear' in your '.login' file
  2059.  
  2060.      3. The best solutions seems to be to enter the following remote:
  2061.  
  2062.           stty 38400
  2063.  
  2064.   ╖  Many people seem to have problems with crashing TERM connections,
  2065.      whatever may be the reason of the crashes. So before starting
  2066.      applications people want to know whether their TERM connection is
  2067.      still alive or not. This can be checked using the following small
  2068.      shell script examples:
  2069.  
  2070.      When you are using tcsh:
  2071.  
  2072.        if ( { trsh -s true } ) then
  2073.          ...
  2074.        endif
  2075.  
  2076.   When you are using bash:
  2077.  
  2078.     if trsh -s true; then
  2079.       ...
  2080.     fi
  2081.  
  2082.   ╖  The WWW browser Netscape is causing people problems to get it to
  2083.      work with TERM. The good news is that it will work under TERM. Here
  2084.      is how:
  2085.  
  2086.              1. Termify netscape
  2087.              2. Fire up termnetscape
  2088.                    under Options | Preferences | Mail/Proxys
  2089.                    leave _all_ of the proxy boxes blank
  2090.                    set the SOCKS box to 'remotehost' & 80
  2091.              3. Ignore the error you get when you exit the Options menu.
  2092.              4. If termnetscape fails to work right:
  2093.                    under Options | Preferences | Mail/Proxys
  2094.                    leave _all_ of the proxy boxes blank
  2095.                    set the SOCKS box to 'none' & 80
  2096.              5. Ignore the error you get when you exit the Options menu.
  2097.  
  2098.   Scott Blachowicz mailed me stating that it is even easier to get
  2099.   Netscape or any other browser to work with TERM if you have a proxy
  2100.   server (e.g. CERN's httpd) installed for use on the remote side of
  2101.   your TERM link. On the local side, you can then do this:
  2102.  
  2103.           1. tredir localhost:8080 remotehost:80
  2104.  
  2105.                 where 'remotehost' is the hostname of your proxy server system.
  2106.  
  2107.           2. Run your particular browser, then in the preferences or options or
  2108.                 whatever it is called, point your proxies at 'localhost' port
  2109.                 8080.
  2110.                 Some browsers might like environment variables like
  2111.  
  2112.                     export http_proxy=http://localhost:8080/
  2113.                     export ftp_proxy=http://localhost:8080/
  2114.  
  2115.   17.  Other Things
  2116.  
  2117.   Some things that might be included:
  2118.  
  2119.   ╖  Extension of troubleshooting
  2120.  
  2121.   ╖  Extension of security issues
  2122.  
  2123.   ╖  Termwrap
  2124.  
  2125.   ╖  Suggestions
  2126.  
  2127.   Anyway, if you have suggestions, criticism, suggestions, or anything
  2128.   else to say about this document, please fire away. At the moment I,
  2129.   Patrick Reijnen, have taken over the authorship of the TERM-HOWTO. I
  2130.   can (currently) be reached at patrickr@bart.nl.
  2131.  
  2132.   18.  Acknowledgements
  2133.  
  2134.   A lot of people have to be thanked. First and foremost Michael
  2135.   O'Reilly and all the developers of TERM, who have provided us with
  2136.   such a great tool. I would also like to thank everyone who gave
  2137.   feedback and contributed to this HOWTO. They include Bill Reynolds,
  2138.   the former author of this HOWTO, Ronald Florence, Tom Payerle, Bill C.
  2139.   Riemers, Hugh Secker-Walker, Matt Welsh, Bill McCarthy, Sergio, Weyman
  2140.   Martin and everybody I forgot to mention.
  2141.  
  2142.